control structure - определение. Что такое control structure
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое control structure - определение

ORDER IN WHICH INDIVIDUAL STATEMENTS, INSTRUCTIONS OR FUNCTION CALLS OF AN IMPERATIVE PROGRAM ARE EXECUTED OR EVALUATED
Program loop; Control structure; Program flow; Control structures; Exitwhen; Continue (Java); Loop index; Flow of control; Counter controlled loops; Count controlled loop; Loop (computing); Loop (programming); Until loop; Program loops; Control construct; Break statement; Break statements; Break (Unix); Continue (keyword); Control statement; Flow control construct; Nested loop; Continue statement; Control variable (programming); Control flow architecture; Control-flow architecture; Control-flow; Break;; Control flow statement; Control-flow statement; Controlflow; Control flag; Program flow of control; Program control flow; Minimal structured control flow
  • A [[state diagram]] of a peptide ion mass mapping search process.
Найдено результатов: 3901
control structure         
<programming> One of the instructions, statements or groups of statements in a programming language which determines the sequence of execution of other instructions or statements (the control flow). In assembly language this typically consists of jumps and conditional jumps along with procedure call and return though some architectures include other constructs such as an instruction which skips the following instruction depending on some condition (PDP?), various kinds of loop instructions (later Motorola 680x0) or conditional execution of all instructions (Advanced RISC Machine). Basic control structures (whatever their names in particular languages) include "if CONDITION then EXPRESSION else EXPRESSION", the switch statement, "while CONDITION do EXPRESSION", "gosub", the suspect "goto" and the much-feared "come from". Other constructs handle errors and exceptions such as traps and interrupts. (1997-09-14)
Control variable (programming)         
In computer programming, a control variable is a program variable that is used to regulate the flow of control of the program.
control flow         
<programming> (Or "flow of control") The sequence of execution of instructions in a program. This is determined at run time by the input data and by the control structures (e.g. "if" statements) used in the program. Not to be confused with "flow control". (1997-09-14)
Control flow         
In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.
break statement         
<programming> A statement in the C programming language that transfers control out of the innermost enclosing switch, while, do, or for statement. The statement also exists in languages derived from C, such as C++ and Java. (2004-03-24)
flow of control         
Organizational structure         
  • Hierarchy-Community Phenotype Model of Organizational Structure
  •  doi = 10.14647/87204}} See also: [https://halshs.archives-ouvertes.fr/halshs-01610098v2 French version] (PDF) and [http://www.martingrandjean.ch/complex-structures-and-international-organizations/ English summary].</ref>
IN AN ORGANISATION, DEFINES HOW ACTIVITIES SUCH AS TASK ALLOCATION AND SUPERVISION ARE DIRECTED TOWARDS THE ACHIEVEMENT OF ITS AIMS
Organisational structure; Organization structure; Organization structures; Operating structure; Matrix structure; Structures of organizations; Organizational structures; Organisation structure; Organisation of work
An organizational structure defines how activities such as task allocation, coordination, and supervision are directed toward the achievement of organizational aims.Pugh, D.
Deep structure and surface structure         
CONCEPT IN LINGUISTICS
Deep Structure; Deep grammar; Deep structures; D-Structures; D-structure; Underlying structure; Deep structure code; Deep structure; D-Structure; S-structure; S-Structure; Deep structures and surface structures; Deep and surface structure
Deep structure and surface structure (also D-structure and S-structure, although these abbreviated forms are sometimes used with distinct meanings) are concepts used in linguistics, specifically in the study of syntax in the Chomskyan tradition of transformational generative grammar.
deep structure         
CONCEPT IN LINGUISTICS
Deep Structure; Deep grammar; Deep structures; D-Structures; D-structure; Underlying structure; Deep structure code; Deep structure; D-Structure; S-structure; S-Structure; Deep structures and surface structures; Deep and surface structure
¦ noun (in transformational grammar) the underlying logical relationships of the elements of a phrase or sentence. Contrasted with surface structure.
Protein tertiary structure         
  • The tertiary structure of a protein consists of the way a polypeptide is formed of a complex molecular shape. This is caused by R-group interactions such as ionic and hydrogen bonds, disulphide bridges, and hydrophobic & hydrophilic interactions.
3D SHAPE OF PROTEIN MOLECULE
Tertiary structure protein; Protein structure, tertiary; Tertiary structure of proteins; Tertiary structure; Tertiary protein structure; Tertiary (protein structure); Tertiary structural; Three-dimensional protein structure; Three dimensional protein structure; 3-dimensional protein structure; 3-D protein structure; 3D protein structure; Apo structure; Holo structure; Protein 3D structures; Protein 3D structure
Protein tertiary structure is the three dimensional shape of a protein. The tertiary structure will have a single polypeptide chain "backbone" with one or more protein secondary structures, the protein domains.

Википедия

Control flow

In computer science, control flow (or flow of control) is the order in which individual statements, instructions or function calls of an imperative program are executed or evaluated. The emphasis on explicit control flow distinguishes an imperative programming language from a declarative programming language.

Within an imperative programming language, a control flow statement is a statement that results in a choice being made as to which of two or more paths to follow. For non-strict functional languages, functions and language constructs exist to achieve the same result, but they are usually not termed control flow statements.

A set of statements is in turn generally structured as a block, which in addition to grouping, also defines a lexical scope.

Interrupts and signals are low-level mechanisms that can alter the flow of control in a way similar to a subroutine, but usually occur as a response to some external stimulus or event (that can occur asynchronously), rather than execution of an in-line control flow statement.

At the level of machine language or assembly language, control flow instructions usually work by altering the program counter. For some central processing units (CPUs), the only control flow instructions available are conditional or unconditional branch instructions, also termed jumps.